home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Entertainment / MacMud / Mud 4.0 / XtcConfig.h < prev    next >
Encoding:
Text File  |  1993-03-16  |  1.2 KB  |  61 lines  |  [TEXT/MPS ]

  1.  
  2. //    XtcConfig.c
  3. //    © Copyright 1992-1993 by Silicon Island, inc. All rights reserved.
  4. //
  5. //    Configuration parameters for the XtcLib Interface Library.
  6.  
  7. #if !defined(XTC_CONFIG)
  8. #define XTC_CONFIG
  9.  
  10. /*
  11.  * Define this if all necessary Macintosh header files should be included
  12.  */
  13. #define    XTC_MAC_HEADERS
  14.  
  15. /*
  16.  * Define this if apple event processing is wanted
  17.  */
  18. #define    XTC_APPLE_EVENTS
  19.  
  20. /*
  21.  * Define this if the window storage area should by dynamic
  22.  */
  23. //    #define XTC_DYNAMIC_WSTORAGE
  24.  
  25. /*
  26.  * Define the maximum number of windows you can have. Only define
  27.  * this if you DO NOT define XTC_DYNAMIC_WSTORAGE
  28.  */
  29. #define XTC_MAX_VIEWS                15
  30.  
  31. /*
  32.  * Define this if you want automatic cursor tracking.
  33.  */
  34. #define XTC_AUTO_CURSOR_TRACKING
  35.  
  36. /*
  37.  * Define this if you want hierarchical menu control.
  38.  */
  39. #define XTC_HIER_MENU_CONTROL
  40.  
  41. /*
  42.  * Define this if floating windows should be hidden on UIA_Suspend.
  43.  */
  44. #undef XTC_HIDE_FLOAT_ON_SUSPEND
  45.  
  46. /*
  47.  * Define this if the menubar should be auto-unhilited.
  48.  */
  49. #define XTC_AUTO_UNHILITE
  50.  
  51. /*
  52.  * Define this if you want QuickTime support.
  53.  */
  54. #define XTC_QUICKTIME
  55.  
  56. /*
  57.  * Define this if you want each element handler in a seperet segment.
  58.  */
  59. #define XTC_SEGMENT_ELEMENTS
  60.  
  61. #endif